1a3aff62ce666ccd3daa38a00cb547ecf605cc39,examples/HelloWorld/src/com/continuuity/examples/helloworld/HelloWorld.java,HelloWorld,configure,#,52

Before Change


      withDataSets().add(new KeyValueTable("whom")).
      withFlows().add(new WhoFlow()).
      withProcedures().add(new Greeting()).
      noBatch().
      build();
  }

After Change


        .add(new WhoFlow())
      .withProcedures()
        .add(new Greeting())
      .noBatch()
      .noWorkflow()
      .build();
  }

  /**